home *** CD-ROM | disk | FTP | other *** search
/ Aminet 21 / Aminet 21 (1997)(GTI - Schatztruhe)[!][Oct 1997].iso / Aminet / gfx / show / gs_src_gs.lha / gs5.03 / gxcpath.h < prev    next >
C/C++ Source or Header  |  1996-12-14  |  5KB  |  120 lines

  1. /* Copyright (C) 1991, 1995 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxcpath.h */
  20. /* Interface to clipping devices */
  21. /* Requires gxdevice.h */
  22.  
  23. /* We expose the implementation of clipping lists so that clients */
  24. /* can allocate clipping lists or devices on the stack. */
  25.  
  26. /*
  27.  * For clipping, a path is represented as a list of rectangles.
  28.  * Normally, a path is created as a list of segments;
  29.  * installing it as a clipping path creates the rectangle list.
  30.  * However, when the clipping path originates in some other way
  31.  * (e.g., from initclip, or for clipping a cached character),
  32.  * or if it is a non-trivial intersection of two paths,
  33.  * the resulting clipping path exists only as a rectangle list;
  34.  * clippath constructs the segment representation if needed.
  35.  * Note that even if the path only exists as a rectangle list,
  36.  * its bounding box (path.bbox) is still correct.
  37.  */
  38.  
  39. /*
  40.  * Rectangle list structure.
  41.  * Consecutive gx_clip_rect entries either have the same Y values,
  42.  * or ymin of this entry >= ymax of the previous entry.
  43.  */
  44. typedef struct gx_clip_rect_s gx_clip_rect;
  45. struct gx_clip_rect_s {
  46.     gx_clip_rect *next, *prev;
  47.     int ymin, ymax;            /* ymax > ymin */
  48.     int xmin, xmax;            /* xmax > xmin */
  49.     byte to_visit;            /* bookkeeping for gs_clippath */
  50. };
  51. /* The descriptor is public only for gxacpath.c. */
  52. extern_st(st_clip_rect);
  53. #define public_st_clip_rect()    /* in gxcpath.c */\
  54.   gs_public_st_ptrs2(st_clip_rect, gx_clip_rect, "clip_rect",\
  55.     clip_rect_enum_ptrs, clip_rect_reloc_ptrs, next, prev)
  56. #define st_clip_rect_max_ptrs 2
  57.  
  58. /*
  59.  * A clip list may consist either of a single rectangle,
  60.  * with null head and tail, or a list of rectangles.  In the latter case,
  61.  * there is a dummy head entry with p.x = q.x to cover Y values
  62.  * starting at min_int, and a dummy tail entry to cover Y values
  63.  * ending at max_int.  This eliminates the need for end tests.
  64.  */
  65. #ifndef gx_clip_list_DEFINED
  66. #  define gx_clip_list_DEFINED
  67. typedef struct gx_clip_list_s gx_clip_list;
  68. #endif
  69. struct gx_clip_list_s {
  70.     gx_clip_rect single;        /* (has next = prev = 0) */
  71.     gx_clip_rect *head;
  72.     gx_clip_rect *tail;
  73.     int count;            /* # of rectangles not counting */
  74.                     /* head or tail */
  75.     bool outside;            /* if true, clip to outside of list */
  76.                     /* rather than inside */
  77. };
  78. #define private_st_clip_list()    /* in gxcpath.c */\
  79.   gs_private_st_ptrs2(st_clip_list, gx_clip_list, "clip_list",\
  80.     clip_list_enum_ptrs, clip_list_reloc_ptrs, head, tail)
  81. #define st_clip_list_max_ptrs 2    /* head, tail */
  82. #define clip_list_is_rectangle(clp) ((clp)->count <= 1)
  83.  
  84. /*
  85.  * Clipping devices provide for translation before clipping.
  86.  * This ability, a late addition, currently is used only in a few
  87.  * situations that require breaking up a transfer into pieces,
  88.  * but we suspect it could be used more widely.
  89.  */
  90. typedef struct gx_device_clip_s {
  91.     gx_device_forward_common;    /* target is set by client */
  92.     gx_clip_list list;        /* set by client */
  93.     gx_clip_rect *current;        /* cursor in list */
  94.     gs_int_point translation;
  95. } gx_device_clip;
  96. extern_st(st_device_clip);
  97. #define public_st_device_clip()    /* in gxcpath.c */\
  98.   gs_public_st_composite(st_device_clip, gx_device_clip,\
  99.     "gx_device_clip", device_clip_enum_ptrs, device_clip_reloc_ptrs)
  100. void gx_make_clip_translate_device(P5(gx_device_clip *dev, void *container,
  101.   const gx_clip_list *list, int tx, int ty));
  102. #define gx_make_clip_device(dev, container, list)\
  103.   gx_make_clip_translate_device(dev, container, list, 0, 0)
  104. void gx_make_clip_path_device(P2(gx_device_clip *, const gx_clip_path *));
  105.  
  106. #define clip_rect_print(ch, str, ar)\
  107.   if_debug7(ch, "[%c]%s 0x%lx: (%d,%d),(%d,%d)\n", ch, str, (ulong)ar,\
  108.         (ar)->xmin, (ar)->ymin, (ar)->xmax, (ar)->ymax)
  109.  
  110. /* Routines exported from gxcpath.c for gxacpath.c */
  111.  
  112. /* Initialize a clip list. */
  113. void gx_clip_list_init(P1(gx_clip_list *));
  114.  
  115. /* Free a clip list. */
  116. void gx_clip_list_free(P2(gx_clip_list *, gs_memory_t *));
  117.  
  118. /* Set the outer box for a clipping path from its bounding box. */
  119. void gx_cpath_set_outer_box(P1(gx_clip_path *));
  120.